diff options
Diffstat (limited to 'examples/hello-next/pages/posts/[id].tsx')
-rw-r--r-- | examples/hello-next/pages/posts/[id].tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hello-next/pages/posts/[id].tsx b/examples/hello-next/pages/posts/[id].tsx index 48413669c..bf795ae83 100644 --- a/examples/hello-next/pages/posts/[id].tsx +++ b/examples/hello-next/pages/posts/[id].tsx @@ -3,7 +3,7 @@ import Link from "next/link"; export default function Post({}) { const router = useRouter(); - + return ( <div style={{ padding: 16 }}> <h1>Post: {router.query.id}</h1> |